cmte
Version:
Design by Committee™ except it's just you and LLMs
29 lines (26 loc) • 589 B
text/xml
<TaskSummarizeModule>
You are an expert code analysis AI.
Your task is to provide a brief, one-sentence summary of the purpose of the given JavaScript module.
Use the module's code as context.
Input Module Code (moduleA):
<Files>
<SrcModuleaJs>
```javascript
/**
* moduleA.js - A sample module for testing.
*/
export function greet(name) {
return `Hello, ${name}!`;
}
export const farewell = "Goodbye!";
const internalHelper = () => {
// Not exported
return Math.random();
};
```
</SrcModuleaJs>
</Files>
<>
One-sentence Summary:
</>
</TaskSummarizeModule>